type net/http.wantConnQueue
10 uses
net/http (current package)
transport.go#L99: idleConnWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L110: connsPerHostWait map[connectMethodKey]wantConnQueue // waiting getConns
transport.go#L1098: t.idleConnWait = make(map[connectMethodKey]wantConnQueue)
transport.go#L1268: type wantConnQueue struct {
transport.go#L1285: func (q *wantConnQueue) len() int {
transport.go#L1290: func (q *wantConnQueue) pushBack(w *wantConn) {
transport.go#L1295: func (q *wantConnQueue) popFront() *wantConn {
transport.go#L1310: func (q *wantConnQueue) peekFront() *wantConn {
transport.go#L1322: func (q *wantConnQueue) cleanFront() (cleaned bool) {
transport.go#L1453: t.connsPerHostWait = make(map[connectMethodKey]wantConnQueue)
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |